home *** CD-ROM | disk | FTP | other *** search
- -- background: 2580 from stack: in
- -- bmap block id: 0
- -- flags: 0000
- -- background id: 0
- -- name:
- ----- HyperTalk script -----
- on randomChoose
- put 1 + the random of 4 into operation
- put 5 + the random of 3 into type
- click at the loc of btn operation
- click at the loc of btn type
- if the hilite of btn 7 is true then
- put 8 + the random of 2 into fracType
- click at the loc of btn fracType
- else
- set the hilite of btn 9 to false
- set the hilite of btn 10 to false
- end if
- end randomChoose
-
- on showButtons
- repeat with x = 2 to 10
- if the hilite of btn x is false then show btn x
- end repeat
- end showButtons
-